home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / imc9101.zip / MAKEALL.BAT < prev    next >
DOS Batch File  |  1991-01-18  |  827b  |  27 lines

  1. @echo off
  2. echo ********** Compiling all programs for IMC January 1991
  3. echo *
  4. echo *  Welcome to the mouse
  5. cl mouse1.c /link graphics > compile.log
  6. echo *
  7. echo *  (L) Setting files and devices to binary mode
  8. cl ljtest1.c >> compile.log
  9. echo *
  10. echo *  Some encryption methods
  11. cl trapdoor.c >> compile.log
  12. echo *
  13. echo *  The XOR operator
  14. rem there's no program for this tip -- but we use the XOR operator
  15. rem in the program TRAPDOOR.C for "Some encryption methods"
  16. echo *
  17. echo *  The setjmp() and longjmp() functions
  18. rem there's no program for this article
  19. echo *
  20. echo *  Is the goto statement really harmful?
  21. rem there's no program for this article
  22. echo *
  23. echo *  Passing arrays by value in C
  24. rem there's no program for this tip
  25. echo *
  26. echo ********** All done .. results of compiles are in COMPILE.LOG
  27.